home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-22 | 1.3 KB | 46 lines | [TEXT/CWIE] |
- // Release Version: $ ODF 2 $
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
-
- //=============================================================================
- #ifndef COMMANDS_H
- #include "Commands.h" // CGraphics3DCommand
- #endif
-
- //=============================================================================
- #ifdef FW_BUILD_MAC
- #pragma segment Graphics3D
- #endif
-
- //========================================================================================
- CGraphics3DCommand::CGraphics3DCommand(Environment* ev, ODCommandID id,
- FW_CFrame* frame)
- : FW_CCommand(ev, id, frame, true)
- {
- }
-
- //----------------------------------------------------------------------------------------
- CGraphics3DCommand::~CGraphics3DCommand()
- {
- }
-
- //----------------------------------------------------------------------------------------
- void
- CGraphics3DCommand::DoIt(Environment* ev) // Override
- {
- FW_UNUSED(ev);
- }
-
- //----------------------------------------------------------------------------------------
- void
- CGraphics3DCommand::UndoIt(Environment* ev) // Override
- {
- FW_UNUSED(ev);
- }
-
- //----------------------------------------------------------------------------------------
- void
- CGraphics3DCommand::RedoIt(Environment* ev) // Override
- {
- this->DoIt(ev);
- }
-